Applies a Gaussian blur effect to the view.
blur?: number | { radius: number opaque: boolean }
Simple blur:
<Image blur={10} />
Custom blur:
<Image blur={{ radius: 12, opaque: false }} />